From: Shannon Zhao Date: Fri, 18 Mar 2016 14:26:33 +0000 (+0100) Subject: acpi: drop CONFIG_ACPI_BOOT and use CONFIG_ACPI instead X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~1518 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22man:///%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22man:/?a=commitdiff_plain;h=829e03ca0ef757350546df8546a6575ca3d0e8da;p=xen.git acpi: drop CONFIG_ACPI_BOOT and use CONFIG_ACPI instead There is no difference between CONFIG_ACPI and CONFIG_ACPI_BOOT in current acpi codes, so it's unnecessary to keep CONFIG_ACPI_BOOT and we use CONFIG_ACPI instead as Jan suggested. Signed-off-by: Shannon Zhao Drop CONFIG_ACPI conditionals completely from x86 code. Signed-off-by: Jan Beulich --- diff --git a/xen/arch/x86/dmi_scan.c b/xen/arch/x86/dmi_scan.c index 8e07f8d546..b049e3193b 100644 --- a/xen/arch/x86/dmi_scan.c +++ b/xen/arch/x86/dmi_scan.c @@ -498,9 +498,7 @@ static __init int reset_videomode_after_s3(struct dmi_blacklist *d) } #endif - -#ifdef CONFIG_ACPI_BOOT -static __init __attribute__((unused)) int dmi_disable_acpi(struct dmi_blacklist *d) +static __init int dmi_disable_acpi(struct dmi_blacklist *d) { if (!acpi_force) { printk(KERN_NOTICE "%s detected: acpi off\n",d->ident); @@ -515,7 +513,7 @@ static __init __attribute__((unused)) int dmi_disable_acpi(struct dmi_blacklist /* * Limit ACPI to CPU enumeration for HT */ -static __init __attribute__((unused)) int force_acpi_ht(struct dmi_blacklist *d) +static __init int force_acpi_ht(struct dmi_blacklist *d) { if (!acpi_force) { printk(KERN_NOTICE "%s detected: force use of acpi=ht\n", d->ident); @@ -527,7 +525,6 @@ static __init __attribute__((unused)) int force_acpi_ht(struct dmi_blacklist *d) } return 0; } -#endif /* * Process the DMI blacklists @@ -564,7 +561,6 @@ static __initdata struct dmi_blacklist dmi_blacklist[]={ } }, -#ifdef CONFIG_ACPI_BOOT /* * If your system is blacklisted here, but you find that acpi=force * works for you, please contact acpi-devel@sourceforge.net @@ -643,8 +639,6 @@ static __initdata struct dmi_blacklist dmi_blacklist[]={ MATCH(DMI_PRODUCT_NAME, "eserver xSeries 440"), NO_MATCH, NO_MATCH }}, -#endif // CONFIG_ACPI_BOOT - { NULL, } }; diff --git a/xen/arch/x86/io_apic.c b/xen/arch/x86/io_apic.c index 7b9cf16546..8b2f03a3ce 100644 --- a/xen/arch/x86/io_apic.c +++ b/xen/arch/x86/io_apic.c @@ -2096,7 +2096,6 @@ void ioapic_resume(void) ACPI-based IOAPIC Configuration -------------------------------------------------------------------------- */ -#ifdef CONFIG_ACPI_BOOT int __init io_apic_get_unique_id (int ioapic, int apic_id) { @@ -2265,8 +2264,6 @@ int io_apic_set_pci_routing (int ioapic, int pin, int irq, int edge_level, int a return 0; } -#endif /*CONFIG_ACPI_BOOT*/ - static int ioapic_physbase_to_id(unsigned long physbase) { int apic; diff --git a/xen/include/asm-x86/config.h b/xen/include/asm-x86/config.h index 4527ce371d..f6f5a109a5 100644 --- a/xen/include/asm-x86/config.h +++ b/xen/include/asm-x86/config.h @@ -36,7 +36,6 @@ /* Intel P4 currently has largest cache line (L2 line size is 128 bytes). */ #define CONFIG_X86_L1_CACHE_SHIFT 7 -#define CONFIG_ACPI_BOOT 1 #define CONFIG_ACPI_SLEEP 1 #define CONFIG_ACPI_NUMA 1 #define CONFIG_ACPI_SRAT 1 diff --git a/xen/include/asm-x86/io_apic.h b/xen/include/asm-x86/io_apic.h index b318a3624a..baa30323fc 100644 --- a/xen/include/asm-x86/io_apic.h +++ b/xen/include/asm-x86/io_apic.h @@ -173,12 +173,10 @@ extern bool_t skip_ioapic_setup; extern bool_t ioapic_ack_new; extern bool_t ioapic_ack_forced; -#ifdef CONFIG_ACPI_BOOT extern int io_apic_get_unique_id (int ioapic, int apic_id); extern int io_apic_get_version (int ioapic); extern int io_apic_get_redir_entries (int ioapic); extern int io_apic_set_pci_routing (int ioapic, int pin, int irq, int edge_level, int active_high_low); -#endif /*CONFIG_ACPI_BOOT*/ extern void init_ioapic_mappings(void); diff --git a/xen/include/xen/acpi.h b/xen/include/xen/acpi.h index 7a5abbe712..30ec0eec5f 100644 --- a/xen/include/xen/acpi.h +++ b/xen/include/xen/acpi.h @@ -49,7 +49,7 @@ (!(entry)) || (unsigned long)(entry) + sizeof(*(entry)) > (end) || \ (entry)->header.length < sizeof(*(entry))) -#ifdef CONFIG_ACPI_BOOT +#ifdef CONFIG_ACPI enum acpi_interrupt_id { ACPI_INTERRUPT_PMI = 1, @@ -107,7 +107,7 @@ extern int acpi_mp_config; extern u32 pci_mmcfg_base_addr; -#else /*!CONFIG_ACPI_BOOT*/ +#else /*!CONFIG_ACPI*/ #define acpi_mp_config 0 @@ -121,7 +121,7 @@ static inline int acpi_boot_table_init(void) return 0; } -#endif /*!CONFIG_ACPI_BOOT*/ +#endif /*!CONFIG_ACPI*/ int get_cpu_id(u32 acpi_id);